home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 1997 #1
/
Amiga Plus CD - 1997 - No. 01.iso
/
pd
/
programmierung
/
mesa-1.2.8
/
src
/
makefile.next
< prev
next >
Wrap
Makefile
|
1996-05-27
|
2KB
|
82 lines
# Makefile for core library for NeXT contributed by Pascal Thibaudeau
# (pthibaud@frbdx11.cribx1.u-bordeaux.fr)
# Mesa 3-D graphics library
# Version: 1.2.8
# Copyright (C) 1995 Brian Paul (brianp@ssec.wisc.edu)
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public
# License along with this library; if not, write to the Free
# Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
# $Id$
# $Log$
##### MACROS #####
VPATH = RCS
INCDIR = ../include
LIBDIR = ../lib
SOURCES = accum.c alpha.c alphabuf.c attrib.c bitmap.c blend.c bresenhm.c \
clip.c context.c copypix.c dd.c depth.c draw.c drawpix.c enable.c \
eval2.c fog.c feedback.c fortran.c get.c interp.c \
light.c lines.c list.c logic.c masking.c misc.c osmesa.c pb.c \
pixel.c points.c polygons.c readpix.c scissor.c span.c stencil.c \
svgamesa.c texture.c varray.c vb.c vertex.c winpos.c xform.c
OBJECTS = $(SOURCES:.c=.o)
##### RULES #####
.c.o:
$(CC) -c -I$(INCDIR) $(CFLAGS) $<
##### TARGETS #####
default:
@echo "Specify a target configuration"
clean:
-rm *.o *~
targets: $(LIBDIR)/$(GL_LIB)
# Make the library
$(LIBDIR)/$(GL_LIB): $(OBJECTS)
$(MAKELIB) $(GL_LIB) $(OBJECTS)
$(RANLIB) $(GL_LIB)
mv $(GL_LIB)* $(LIBDIR)
include ../Make-config
include depend
#
# Run 'make depend' to update the dependencies if you change what's included
# by any source file.
#
dep: $(SOURCES)
makedepend -fdepend -Y -I../include $(SOURCES)